home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
mint
/
filesys
/
ramfs.zoo
/
makefile
< prev
next >
Wrap
Makefile
|
1993-04-17
|
417b
|
20 lines
# Makefile for RAMFS.XFS; the -mshort flag is mandatory
CC = gcc
AS = $(CC) -c
LD = $(CC) -nostdlib
CFLAGS = -mshort -O2 -fomit-frame-pointer -Wall
ramfs.xfs: start.o ramfs.o
$(LD) -s -o ramfs.xfs start.o ramfs.o -lgnu16
cp ramfs.xfs /c/mint/
archive:
zoo aunhP: ramfs.zoo \
atarierr.h filesys.h makefile ramfs.c start.s ramfs.xfs \
lisez.moi readme.1st
start.o: start.s
ramfs.o: ramfs.c